home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frmOpt
- Caption = "WebNet Browser Options"
- ClientHeight = 1356
- ClientLeft = 48
- ClientTop = 336
- ClientWidth = 6756
- ControlBox = 0 'False
- ForeColor = &H80000005&
- LinkTopic = "Form2"
- ScaleHeight = 1356
- ScaleWidth = 6756
- StartUpPosition = 2 'CenterScreen
- Begin VB.CommandButton Command3
- Caption = "Cancel"
- Height = 252
- Left = 5520
- TabIndex = 6
- Top = 852
- Width = 1092
- End
- Begin VB.CommandButton Command2
- Caption = "Apply"
- Default = -1 'True
- Enabled = 0 'False
- Height = 372
- Left = 5520
- TabIndex = 5
- Top = 456
- Width = 1092
- End
- Begin VB.TextBox Text1
- Enabled = 0 'False
- Height = 288
- Left = 240
- TabIndex = 4
- Text = "http://"
- Top = 840
- Width = 5052
- End
- Begin VB.OptionButton Option2
- Caption = "Home Page"
- Height = 252
- Left = 240
- TabIndex = 2
- Top = 600
- Width = 1212
- End
- Begin VB.OptionButton Option1
- Caption = "Blank Page"
- Height = 252
- Left = 240
- TabIndex = 1
- Top = 360
- Width = 1092
- End
- Begin VB.CommandButton Command1
- Caption = "OK"
- Height = 192
- Left = 5520
- TabIndex = 0
- Top = 240
- Width = 1092
- End
- Begin VB.Frame Frame1
- Caption = "Start With: (Does Not Work Yet)"
- Height = 1092
- Left = 120
- TabIndex = 3
- Top = 120
- Width = 5292
- End
- Attribute VB_Name = "frmOpt"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub Command1_Click()
- Unload Me
- End Sub
- Private Sub Command2_Click()
- Command2.Enabled = False
- End Sub
- Private Sub Command3_Click()
- Unload Me
- End Sub
- Property Get Form1() As Object
- End Property
- Private Sub Option1_Click()
- Text1.Enabled = False
- Command2.Enabled = True
- Opt1Err:
- End Sub
- Private Sub Option2_Click()
- Text1.Enabled = True
- Command2.Enabled = True
- End Sub
-